home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / mcdeps.mak < prev    next >
Encoding:
Text File  |  1997-01-16  |  3.8 KB  |  120 lines

  1. #*      mcdeps.mak
  2. #*
  3. #* Defines make dependencies for MIDAS Sound System C source files
  4. #* Note! You need to include mincs.mak first!
  5. #* Note2! You need to define dpmi_h and vgatext_h if you compile for DOS.
  6. #*
  7. #* $Id: mcdeps.mak,v 1.9 1997/01/16 18:41:59 pekangas Exp $
  8. #*
  9. #* Copyright 1996,1997 Housemarque Inc.
  10. #*
  11. #* This file is part of the MIDAS Sound System, and may only be
  12. #* used, modified and distributed under the terms of the MIDAS
  13. #* Sound System license, LICENSE.TXT. By continuing to use,
  14. #* modify or distribute this file you indicate that you have
  15. #* read the license and understand and accept it fully.
  16. #*
  17.  
  18.  
  19. dma.$(O) :      dma.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) $(dma_h) \
  20.                 $(dpmi_h)
  21.  
  22. dsm.$(O) :      dsm.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  23.                 $(sdevice_h) $(dsm_h) $(mutils_h) $(mglobals_h) $(ems_h) \
  24.                 $(dpmi_h)
  25.  
  26. dostimer.$(O):  dostimer.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h) \
  27.                 $(timer_h) $(mglobals_h)
  28.  
  29. errors.$(O) :   errors.c $(lang_h) $(mtypes_h) $(errors_h)
  30.  
  31. file.$(O) :     file.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  32.                 $(rawfile_h) $(file_h)
  33.  
  34. gmpcmds.$(O) :  gmpcmds.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h) \
  35.                 $(gmplayer_h)
  36.  
  37. gmplayer.$(O) : gmplayer.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h) \
  38.                 $(gmplayer_h) $(mmem_h)
  39.  
  40. loadmod.$(O) :  loadmod.c $(lang_h) $(mtypes_h) $(errors_h) $(mglobals_h) \
  41.                 $(mmem_h) $(file_h) $(sdevice_h) $(gmplayer_h) $(mutils_h)
  42.  
  43. loads3m.$(O) :  loads3m.c $(lang_h) $(mtypes_h) $(errors_h) $(mglobals_h) \
  44.                 $(mmem_h) $(file_h) $(sdevice_h) $(gmplayer_h) $(mutils_h)
  45.  
  46. loadxm.$(O) :   loadxm.c $(lang_h) $(mtypes_h) $(errors_h) $(mglobals_h) \
  47.                 $(mmem_h) $(file_h) $(sdevice_h) $(gmplayer_h) $(xm_h) \
  48.                 $(mutils_h)
  49.  
  50. mconfig.$(O) :  mconfig.c $(midas_h) $(vgatext_h)
  51.  
  52. mglobals.$(O) : mglobals.c $(lang_h)
  53.  
  54. mpoll.$(O) :    mpoll.c $(midas_h)
  55.  
  56. midas.$(O) :    midas.c $(midas_h)
  57.  
  58. mixsd.$(O) :    mixsd.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  59.                 $(mixsd_h) $(sdevice_h) $(dsm_h) $(dma_h)
  60.  
  61. mmem.$(O) :     mmem.c $(lang_h) $(errors_h) $(mmem_h)
  62.  
  63. nosound.$(O) :  nosound.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h)
  64.  
  65. vu.$(O) :       vu.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) $(sdevice_h)\
  66.                 $(vu_h) $(mutils_h)
  67.  
  68. rawfile.$(O) :  rawfile.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  69.                 $(rawfile_h)
  70.  
  71. winwave.$(O) :  winwave.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h) \
  72.                 $(mmem_h) $(dsm_h) $(mglobals_h)
  73.  
  74. dsmnsnd.$(O):   dsmnsnd.c $(lang_h) $(mtypes_h) $(errors_h) $(sdevice_h) \
  75.                 $(dsm_h)
  76.  
  77. rawf_nt.$(O):   rawf_nt.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  78.                 $(rawfile_h)
  79.  
  80. midasfx.$(O):   midasfx.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  81.                 $(sdevice_h) $(midasfx_h) $(file_h)
  82.  
  83. midasstr.$(O):  midasstr.c $(lang_h) $(mtypes_h) $(errors_h) $(mmem_h) \
  84.                 $(sdevice_h) $(file_h) $(midasstr_h)
  85.  
  86. midasdll.$(O):  midasdll.c $(midas_h) $(midasdll_h)
  87.  
  88.  
  89.  
  90. #* $Log: mcdeps.mak,v $
  91. #* Revision 1.9  1997/01/16 18:41:59  pekangas
  92. #* Changed copyright messages to Housemarque
  93. #*
  94. #* Revision 1.8  1996/09/25 16:29:02  pekangas
  95. #* Added midasdll
  96. #*
  97. #* Revision 1.7  1996/09/22 23:16:56  pekangas
  98. #* Added midasfx and midasstr
  99. #*
  100. #* Revision 1.6  1996/08/13 20:47:54  pekangas
  101. #* Added rawf_nt.obj
  102. #*
  103. #* Revision 1.5  1996/08/06 20:36:15  pekangas
  104. #* Added mpoll.obj
  105. #*
  106. #* Revision 1.4  1996/07/29 19:32:58  pekangas
  107. #* Added dsmnsnd.obj
  108. #*
  109. #* Revision 1.3  1996/06/06 20:32:58  pekangas
  110. #* Added dostimer.
  111. #*
  112. #* Revision 1.2  1996/05/25 09:31:56  pekangas
  113. #* Fixed winwave dependencies
  114. #*
  115. #* Revision 1.1  1996/05/24 21:24:00  pekangas
  116. #* Initial revision
  117. #*
  118. #* Revision 1.1  1996/05/24 19:04:50  pekangas
  119. #* Initial revision
  120. #*